lsblk
Look for your USB drive, such as /dev/sda
with partitions like sda1
and sda2
.
sudo fdisk /dev/sdX
Replace X
with the correct letter for your USB device (e.g. sda
).
In fdisk, follow these key presses:
sudo mkfs.ext4 -L persistence /dev/sda3
Replace /dev/sda3
with your new partition if different.
sudo mkdir -p /mnt/my_usb
sudo mount /dev/sda3 /mnt/my_usb
echo "/ union" | sudo tee /mnt/my_usb/persistence.conf
sudo umount /mnt/my_usb
Reboot your system and select "Live USB Persistence" from the Kali boot menu.